home *** CD-ROM | disk | FTP | other *** search
/ Delphi Informant Complete 1995 - 2000 / Delphi Informant Complete 1995 to 2000.iso / Delphi Informant Magazine Complete Works SOURCE CODE 1998.rar / 1998 / Sep / di9809am / Compont / Sample1 / TCmpPrj.dpr < prev    next >
Text File  |  1998-06-26  |  254b  |  15 lines

  1. program TCmpPrj;
  2.  
  3. uses
  4.   Forms,
  5.   TAPIcomp in 'TAPIcomp.pas',
  6.   TapiForm in 'TapiForm.pas' {TapiCallManager};
  7.  
  8. {$R *.RES}
  9.  
  10. begin
  11.   Application.Initialize;
  12.   Application.CreateForm(TTapiCallManager, TapiCallManager);
  13.   Application.Run;
  14. end.
  15.